DataCollection | ComponentOne
C1.DataCollection.SignalR.Client Assembly / C1.DataCollection.SignalR.Client Namespace / C1ProxyDataCollection<T> Class / InsertAsyncOverride Method
The index where the item is inserted.
The item inserted.
The cancellation token.

In This Topic
    InsertAsyncOverride Method (C1ProxyDataCollection<T>)
    In This Topic
    This method is called when an item is inserted in the collection.
    Syntax
    'Declaration
     
    Protected Overrides Function InsertAsyncOverride( _
       ByVal index As Integer, _
       ByVal item As T, _
       ByVal cancellationToken As CancellationToken _
    ) As Task(Of Integer)
    protected override Task<int> InsertAsyncOverride( 
       int index,
       T item,
       CancellationToken cancellationToken
    )

    Parameters

    index
    The index where the item is inserted.
    item
    The item inserted.
    cancellationToken
    The cancellation token.
    Remarks
    CanInsert must return true to enable this method.
    See Also